Interface description language
──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
top
An interface description language or interface definition language (IDL) is a generic term for a language that lets a program or object written in one language communicate with another program written in an unknown language. IDLs are usually used to describe data types and interfaces in a language-independent way, for example, between those written in C++ and those written in Java.
IDLs are commonly used in remote procedure call software. In these cases the machines at either end of the link may be using different operating systems and computer languages. IDLs offer a bridge between the two different systems.
Software systems based on IDLs include Sun's ONC RPC, The Open Group's Distributed Computing Environment, IBM's System Object Model, the Object Management Group's CORBA (which implements OMG IDL, an IDL based on DCE/RPC) and Data Distribution Service, Mozilla's XPCOM, Microsoft's Microsoft RPC (which evolved into COM and DCOM), Facebook's Thrift and WSDL for Web services.
Contents
• Examples
• See also
──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
Examples
• AIDL: Java-based, for Android; supports local and remote procedure calls, can be accessed from native applications by calling through Java Native Interface (JNI)
• Avro IDL: for the Apache Avro system
• ASN.1
• Cap'n Proto: created by its former maintainer, avoids some of the perceived shortcomings of Protocol Buffers.
• CortoScript: Describe data and/or interfaces for systems that require Semantic interoperability
• Etch: Cisco's Etch Cross-platform Service Description Language
• Extensible Data Notation (EDN): Clojure data format, similar to JSON
• FlatBuffers: Serialization format from Google supporting zero-copy deserialization
• Franca IDL: the open-source Franca interface definition language
• IDL specification language: the original Interface Description Language
• IPL: Imandra Protocol Language
• Microsoft Interface Definition Language (MIDL): the Microsoft extension of OMG IDL to add support for Component Object Model (COM) and Distributed Component Object Model (DCOM)
• OMG IDL: standardized by Object Management Group, used in CORBA (for DCE/RPC services) and DDS (for data modeling), also selected by the W3C for exposing the DOM of XML, HTML, and CSS documents
• Protocol Buffers: Google's IDL
• RESTful Service Description Language (RSDL)
• Smithy: An AWS-invented protocol-agnostic interface definition language.
• Specification Language for Internet Communications Engine (Ice: Slice)
• Universal Network Objects: OpenOffice.org's component model
• Web Application Description Language (WADL)
• Web Services Description Language (WSDL)
• XCB: X protocol description language for X Window System
• Cross Platform Interface Description Language (XPIDL): Mozilla's way to specify XPCOM interfaces
See also
References
cite-note-11. ↑ citerefbirkholzviganobormann2019Birkholz, H.; Vigano, C.; Bormann, C. (2019). "Concise Data Definition Language (CDDL): A Notational Convention to Express Concise Binary Object Representation (CBOR) and JSON Data Structures". RFC Editor. doi:10.17487/RFC8610. S2CID 195857027. Retrieved 2022-05-24.
cite-note-22. ↑ "FIDL Overview". Fuchsia. Retrieved 2022-02-23.
External links
• Documenting Software Architecture: Documenting Interfaces (PDF)
• OMG Specification of OMG IDL
• OMG Tutorial on OMG IDL